home *** CD-ROM | disk | FTP | other *** search
/ Aircraft Imagery / Aircraft Imagery.iso / autorun / view.dpr < prev    next >
Text File  |  1996-03-13  |  232b  |  15 lines

  1. program View;
  2.  
  3. uses
  4.   Forms,
  5.   Vv1 in 'VV1.PAS' {Form1},
  6.   Prdi in 'PRDI.PAS' {priDial};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.CreateForm(TpriDial, priDial);
  13.   Application.Run;
  14. end.
  15.